home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk16 / ispell / makefile.unix < prev    next >
Makefile  |  1995-03-18  |  574b  |  25 lines

  1. # -*- Mode: Text -*-
  2.  
  3. CFLAGS = -O
  4.  
  5. all: buildhash ispell ispell.hash
  6.  
  7. ispell.hash: buildhash dict.191
  8.     buildhash
  9.  
  10. install: buildhash ispell ispell.hash
  11.     cp ispell /usr/local/ispell
  12.     cp ispell.hash /usr/local/lib/ispell.hash
  13.     chmod 755 /usr/local/ispell /usr/local/lib/ispell.hash
  14.  
  15. buildhash: buildhash.o hash.o
  16.     cc -o buildhash buildhash.o hash.o
  17.  
  18. ispell: ispell.o term.o good.o lookup.o hash.o tree.o
  19.     cc $(CFLAGS) -o ispell ispell.o term.o good.o lookup.o \
  20.         hash.o tree.o -ltermlib
  21.  
  22. clean:
  23.     rm -f *.o buildhash ispell core a.out mon.out hash.out \
  24.         stats.191 count.191
  25.